home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-04-13 | 431 b | 31 lines | [TEXT/ttxt] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class LINK_LIST_BENCH
-
- inherit BENCH;
-
- creation make
-
- feature
-
- make is
- local
- link_list: LINK_LIST[INTEGER];
- i: INTEGER;
- do
- from
- !!link_list.make;
- i := count;
- until
- i = 0
- loop
- link_list.add_first(0);
- i := i - 1;
- end;
- bench(link_list);
- end;
-
- end
-
-